home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.4 Applications 1997 August / SGI IRIX 6.4 Applications 1997 August.iso / dist / mmailp.idb / usr / lib / Zmail / bin / quietly.z / quietly
Encoding:
Text File  |  1997-01-22  |  213 b   |  16 lines

  1. :
  2. : Wrapper for verbose tools -- only print stderr if nonzero exit status
  3.  
  4. errors=${TMPDIR-/tmp}/qt$$
  5.  
  6. eval "$@" 2>$errors
  7. status=$?
  8.  
  9. if test $status -ne 0
  10. then
  11.     cat $errors 1>&2
  12. fi
  13.  
  14. rm -f $errors
  15. exit $status
  16.